gsk: Fix printing of identity transforms
authorMatthias Clasen <mclasen@redhat.com>
Mon, 3 Jun 2019 16:19:57 +0000 (16:19 +0000)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 3 Jun 2019 16:20:38 +0000 (16:20 +0000)
These need to print as "none", otherwise
the parser does not accept them.

gsk/gsktransform.c

index 7fd705a49cb3859f65c179bb744c02499aa14bb3..c2f9abd4b73f111dcdde5f0234e7d1d1691c263e 100644 (file)
@@ -173,7 +173,7 @@ static void
 gsk_identity_transform_print (GskTransform *transform,
                               GString      *string)
 {
-  g_string_append (string, "identity");
+  g_string_append (string, "none");
 }
 
 static GskTransform *